time.zoneTrans.when (field)

11 uses

	time (current package)
		zoneinfo.go#L58: 	when         int64 // transition time, in seconds since 1970 GMT
		zoneinfo.go#L170: 	if len(l.tx) == 0 || sec < l.tx[0].when {
		zoneinfo.go#L176: 			end = l.tx[0].when
		zoneinfo.go#L192: 		lim := tx[m].when
		zoneinfo.go#L203: 	start = tx[lo].when
		zoneinfo_read.go#L299: 		tx[i].when = n
		zoneinfo_read.go#L315: 		tx = append(tx, zoneTrans{when: alpha, index: 0})
		zoneinfo_read.go#L325: 		if tx[i].when <= sec && (i+1 == len(tx) || sec < tx[i+1].when) {
		zoneinfo_read.go#L326: 			l.cacheStart = tx[i].when
		zoneinfo_read.go#L330: 				l.cacheEnd = tx[i+1].when